home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / xulrunner-1.9.prerm < prev    next >
Encoding:
Text File  |  2009-09-02  |  339 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. XUL_VERSION=1.9
  6.  
  7. if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then
  8.         /usr/sbin/update-alternatives --remove xulrunner /usr/bin/xulrunner-$XUL_VERSION
  9.         if [ "$(update-alternatives --list xulrunner | wc -l)" = "0" ]; then
  10.                  /usr/sbin/update-alternatives --remove-all xulrunner
  11.         fi
  12. fi
  13.  
  14.  
  15.